home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK2.toast / Development Kits (Disc 2) / ScriptX / Documentation / Code Examples from Docs / langguid / chap_05 / xmpl_06.sx < prev   
Encoding:
Text File  |  1996-05-21  |  255 b   |  13 lines  |  [TEXT/ttxt]

  1. --<<<
  2. -- Kaleida Labs, Inc.
  3. -- Field Guide to the ScriptX Language
  4. -- chapter 5, example 6
  5.  
  6. -- examples of using pipes
  7.  
  8. 1 to 5 | LinkedList
  9. function double n -> 2 * n
  10. #(1, 2, 3, 4) | (n -> 2 * n)
  11. function squares n -> n * n
  12. 1 to 5 | double | squares
  13. -->>>